home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-25 | 1.0 KB | 23 lines | [TEXT/MPS ] |
- # ODF 1.0d10 introduces a new subsystem: ODUtils. This subsystem
- # is a replacement for the OpenDoc Utilities shipped with the
- # OpenDoc SDK. Nearly all sources in ODUtils are identical to
- # the sources in the OpenDoc SDK, but to provide compatibility
- # with ODF it was necessary make a few changes to header files.
- # In development environments such as CodeWarrior and Symantec C++
- # 8.0, it is dangerous to have both the "OpenDoc Utilities" from
- # the OpenDoc SDK and the ODUtils from ODF accessible on the header
- # file search path. This script looks to see if the OpenDoc Utilties
- # are in their normal location, and if so issues a warning that they
- # need to be removed or shielded.
-
- set exit 0
- set utils "`files -d -o "{FWOpenDocSDK}" | search ":OpenDoc Utilities:"`"
- set exit 1
-
- if "{utils}" != ""
- Alert "WARNING! The "OpenDoc Utilities" folder is present inside"∂
- "your OpenDoc SDK folder. This is likely to result in problems"∂
- "when compiling ODF 1 or greater. Please remove or shield"∂
- "that folder. See the ODF release notes for more information."
- end
-